home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00097.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  656 b   |  22 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5. end
  6.  
  7. on mouseEnter me
  8.   if the currentSpriteNum = 66 then
  9.     puppetSound("TilHovedmenu")
  10.   end if
  11.   set the visible of sprite (the currentSpriteNum + 1) to 1
  12.   set the visible of sprite (the currentSpriteNum + 2) to 1
  13. end
  14.  
  15. on mouseLeave me
  16.   set the visible of sprite (the currentSpriteNum + 1) to 0
  17.   set the visible of sprite (the currentSpriteNum + 2) to 0
  18.   if the currentSpriteNum = 66 then
  19.     set the visible of sprite (the currentSpriteNum + 3) to 0
  20.   end if
  21. end
  22.